home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <winb.h>
- #include <te.h>
- #include <fntb.h>
- #include <gui.h>
-
- /* id = 512, x = 7, y = 7, color = 2, size = 7 Byte */
- unsigned char iconICON512[] = {
- 0x07, 0x07, 0x00, 0x01,
- 0x83, 0x45, 0x29, 0x11, 0x29, 0x45, 0x83
- } ;
- /* id = 513, x = 7, y = 7, color = 2, size = 7 Byte */
- unsigned char iconICON513[] = {
- 0x07, 0x07, 0x00, 0x01,
- 0x00, 0x10, 0x38, 0x7c, 0xfe, 0xfe, 0x00
- } ;
- /* id = 514, x = 7, y = 7, color = 2, size = 7 Byte */
- unsigned char iconICON514[] = {
- 0x07, 0x07, 0x00, 0x01,
- 0x00, 0xfe, 0xfe, 0x7c, 0x38, 0x10, 0x00
- } ;
-
- int iconMaxId = 514 ;
- unsigned char *iconTbl[] = {
- iconICON512, iconICON513, iconICON514
- } ;
-
-